add_filter( 'wc_add_to_cart_message_html', 'exploretech_custom_add_to_cart_message_html' );
function exploretech_custom_add_to_cart_message_html() {
$ext_custom_message = "You have successfully added the product, thanks for shopping with us";
return $ext_custom_message;
}